zero address code - tradução para árabe
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

zero address code - tradução para árabe

REPRESENTATION OF INTERMEDIATE CODE USED BY COMPILERS
Three address code

zero address code      
كود بلا عنوان
real address         
REPRESENTATION OF MEMORY ADDRESS
Real address; Binary address; Binary addressing; Binary code addressing
عنوان مطلق أو مباشر لموقع فى الذاكرة الرئيسية
physical address         
REPRESENTATION OF MEMORY ADDRESS
Real address; Binary address; Binary addressing; Binary code addressing
عنوان حقيقى

Definição

physical address
<memory management> The address presented to a computer's main memory in a virtual memory system, in contrast to the virtual address which is the address generated by the CPU. A memory management unit translates virtual addresses into physical addresses. (1995-03-31)

Wikipédia

Three-address code

In computer science, three-address code (often abbreviated to TAC or 3AC) is an intermediate code used by optimizing compilers to aid in the implementation of code-improving transformations. Each TAC instruction has at most three operands and is typically a combination of assignment and a binary operator. For example, t1 := t2 + t3. The name derives from the use of three operands in these statements even though instructions with fewer operands may occur.

Since three-address code is used as an intermediate language within compilers, the operands will most likely not be concrete memory addresses or processor registers, but rather symbolic addresses that will be translated into actual addresses during register allocation. It is also not uncommon that operand names are numbered sequentially since three-address code is typically generated by the compiler.

A refinement of three-address code is A-normal form (ANF).